home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 9 / The PC-SIG Library on CD ROM - Ninth Edition.iso / 101_200 / DISK0163 / DISK0163.ZIP / CRYPT.DOC < prev    next >
Text File  |  1983-08-23  |  2KB  |  45 lines

  1.  
  2.      CRYPT (Encryption / Decryption Filter)
  3.      Command
  4.     
  5.      --------------------------------------------------
  6.      Purpose:  This program will encode the text, read 
  7.                from the standard input, and write it to
  8.                the standard output device.
  9.  
  10.  
  11.      Format:   CRYPT key
  12.  
  13.  
  14.      Type:     Internal  External
  15.                            ***
  16.      
  17.      Remarks:  To decode an encrypted message, pass the
  18.                message through this filter again with 
  19.                the same key as was used for encryption.
  20.              
  21.              
  22.      Example:  A>CRYPT yohoho <crypt.doc >crypt.cod
  23.  
  24.                Will produce a file containing the text
  25.                of this file, encoded so that it is illegible.
  26.  
  27.                A>CRYPT yohoho <crypt.cod
  28.                
  29.                Will then reproduce the text of this document,
  30.                and display it on the screen.
  31.  
  32.  
  33.      Note:     1.   The encryption method here is based on
  34.                     the XOR function, and while secure enough
  35.                     to keep someone from freely reading
  36.                     encoded files, it will probably not stop
  37.                     a determined effort to decode the files.
  38.                      
  39.                2.   Care should be taken to remember the key
  40.                     since there is no way of reconstructing it
  41.                     short of decrypting the file.
  42.  
  43.  
  44.                Written by Michael Hanson
  45.